*{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    padding: 0;
    margin: 0;
}
body{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(#111,#222 );
    display: flex;
    justify-content: center;
    align-items: center;
}
    
body::after{
    content: '';
    width: 100%;
    height: 100%;
    background: #21A9D1;
    position: absolute;
    clip-path: circle(30% at right 70%);
    z-index: -1;
}

.container{
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255,.1);
    border-radius: 25px;
    overflow: hidden;
}

header{
    margin: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo{
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 32px;
    color:aliceblue;
    text-decoration: none;
}


header ul{
    width: 50%;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
}

header ul a{
    text-decoration: none;
    color:aliceblue
}
header .logo:hover{
    color: #21A9D1 ;
}
header ul a:hover{
    color: #21A9D1 ;
    text-decoration: underline;
}
.content .text{
    color: aliceblue;
    width: 40%;
}
.content .text h2{
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.content .text p{
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 25px;
}
.content .logo{
    width: 40%;
}
.content{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 120px;
}

